.howitworks_container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 60px;
  background-color: rgb(35,37,38);
}

.howitworks_container > h2 {
  padding-top: 60px;
  padding-bottom: 40px;
  margin: 0;
  color: rgb(255,255,255);
}

.steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 120px;
  padding-bottom: 100px;
  text-align: center;
}

.step {
  padding: 10px 10px;
  border-radius: 20px;
  width: 350px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}


.step_img {
  width: 40px;
}

.step > h3 {
  margin: 0;
  color: rgb(255,255,255);
}

.step > p {
  color: rgb(255,255,255)
}



@media screen and (max-width:1589px) {
  .steps {
    gap: 90px;
  }
}

@media screen and (max-width:1518px) {
  .step {
    width: 270px;
  }
}

@media screen and (max-width:1422px) {
  .howitworks_container > h2 {
    font-size: 22px;
  }
}

@media screen and (max-width:1293px) {
  .howitworks_container > h2 {
    font-size: 20px;
  }

  .step > h3 {
    font-size: 16.5px;
  }

  .step > p {
    font-size: 14px;
  }
}

@media screen and (max-width:1277px) {
  .steps {
    gap: 70px;
  }

  .step {
    width: 260px;
  }
}

@media screen and (max-width:1218px) {
  .steps {
    gap: 60px;
  }
}

@media screen and (max-width:1182px) {
  .step {
    width: 240px;
  }
}

@media screen and (max-width:1124px) {
  .step {
    width: 210px;
  }

  .step_img {
    width: 30px;
  }

  .steps {
    gap: 50px;
  }
}

@media screen and (max-width: 1065px) {
  .howitworks_container > h2 {
    font-size: 18px;
  }
}

@media screen and (max-width:845px) {
  .steps {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
  }
}
